# HG changeset patch
# User pavlo-lutsik
# Date 1408042578 14400
# Node ID 6b0981ab063ec823109f0bb1e4d26545ff8ffe62
# Parent 51c4548d56eda4aa9371d25bbf8b2d334a54b23a
Uploaded
diff -r 51c4548d56ed -r 6b0981ab063e RnBeadsGalaxy.R
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/RnBeadsGalaxy.R Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,220 @@
+#msg.file<-file("RnBeads.messages.out", open="w")
+#sink(file=msg.file)
+
+
+## add the RnBeads dependencies if we are on a cloud share-instance
+if("Rsitelibrary" %in% list.files("/mnt")){
+ .libPaths("/mnt/galaxy/Rsitelibrary")
+}
+
+if(!'wordcloud' %in% rownames(installed.packages())){
+ install.packages('wordcloud',repos='http://cran.us.r-project.org')
+}
+
+suppressWarnings(suppressPackageStartupMessages(library(RnBeads)))
+suppressWarnings(suppressPackageStartupMessages(library(getopt)))
+
+
+fname <- system.file(file.path("extdata", "options.txt"), package = "RnBeads")
+table.options <- read.delim(fname, quote = "", stringsAsFactors = FALSE)
+rownames(table.options) <- table.options[, "Name"]
+
+all.opts<-table.options$Name
+#all.opts<-names(rnb.options())
+#opt.class<-RnBeads:::OPTION.TYPES[-28]
+opt.class<-table.options$Type
+names(opt.class)<-all.opts
+#all.opts<-names(opt.class)
+#all.opts<-paste("--", all.opts, sep="")
+#all.opts<-gsub("\\.([a-z])", "\\U\\1", all.opts, perl=TRUE)
+all.opts<-gsub("\\.","-", all.opts)
+#opt.class<-sapply(rnb.options(), class)
+
+rnb.opt.spec<-data.frame(
+ Long=all.opts,
+ Short=as.character(1:length(all.opts)),
+ Mask=c(1,2)[as.integer((opt.class=="logical"))+1],
+ Type=opt.class)
+
+### automated xml file preparation
+#xml.strings<-apply(rnb.opt.spec,1, function(row){
+#
+# opt.lab<-gsub("-", ".", row[1])
+# opt.def.val<-rnb.getOption(opt.lab)
+# #print(opt.def.val)
+# opt.name<-gsub("-([0-9a-z])", "\\U\\1", row[1], perl=TRUE)
+# tf.opt<-"\t\t\tTrue \n\t\t\tFalse "
+# opt.lab<-paste(opt.lab, gsub("\\."," ", row[4]), sep=", ")
+# if(row[4]=="logical"){
+# opt.type<-'select'
+# if(!is.null(opt.def.val) && opt.def.val)
+# opt.def.val<-"1" else
+# opt.def.val<-"0"
+# string<-sprintf("\t\t \n%s\n\t\t\n", opt.name, opt.type, opt.lab, opt.def.val, tf.opt)
+# }else{
+# opt.type<-'text'
+# if(length(opt.def.val)<1L){
+# opt.def.val<-""
+# }else{
+# if(!is.null(opt.def.val) && opt.def.val!="")
+# opt.def.val<-paste(opt.def.val, collapse=",") else
+# opt.def.val<-""
+# }
+# string<-sprintf("\t\t \n", opt.name, opt.type, opt.lab, opt.def.val)
+# }
+# string
+# })
+##cat(xml.strings, sep="", file="automated.settings.xml.txt")
+#
+#opt.def.strings<-apply(rnb.opt.spec,1, function(row){
+#
+# opt.name<-gsub("-([0-9a-z])", "\\U\\1", row[1], perl=TRUE)
+# opt.long<-row[1]
+# opt.short<-row[2]
+#
+# if(row[4]=="logical"){
+# def.string<-sprintf("#if str( $options.%s ) == \"True\"\n\t--%s\n#end if\n", opt.name, opt.long)
+# }else{
+# def.string<-sprintf("#if str( $options.%s ) != \"\"\n\t--%s=\"$options.%s\" \n#end if\n", opt.name, opt.long, opt.name)
+# }
+# def.string
+#
+# })
+#cat(opt.def.strings, sep="", file="automated.option.assignments.txt")
+
+
+rnb.opt.spec$Type<-gsub("\\.vector", "", rnb.opt.spec$Type)
+rnb.opt.spec$Type<-gsub("numeric", "double", rnb.opt.spec$Type)
+rnb.opt.spec<-rbind(data.frame(
+ Long=c("data-type", "pheno", "idat-dir","idat-files","bed-files", "gs-report", "geo-series", "betas", "pvals","output-file", "report-dir"),
+ Short=c("d","s","a","i","f","g","e","b","p","r","o"),
+ Mask=c(1,2,2,2,2,2,2,2,2,1,1),
+ Type=c("character","character","character","character","character","character","character","character","character","character", "character")),
+ rnb.opt.spec)
+
+opts<-getopt(as.matrix(rnb.opt.spec))
+#opts<-getopt(as.matrix(rnb.opt.spec), opt=list("--data-type=idats","--report-dir=dir", "--idats=file1\tfile2"))
+print(opts)
+
+if(opts[["data-type"]]=="idatDir"){
+
+ data.source<-list()
+ data.type<-"idat.dir"
+ data.source[["idat.dir"]]<-opts[["idat-dir"]]
+ data.source[["sample.sheet"]]<-opts[["pheno"]]
+
+}else if(opts[["data-type"]]=="idatFiles"){
+
+ data.type<-"idat.dir"
+ file.string<-gsub(" ","", opts[["idat-files"]])
+ files<-strsplit(file.string, ",")[[1]]
+ files<-files[files!=""]
+ bed.dir<-sprintf("%s_beds",opts[["report-dir"]])
+ dir.create(bed.dir)
+ file.copy(files, bed.dir)
+ for(dat.file in list.files(bed.dir, full.names = TRUE)){
+ file.rename(dat.file, gsub("\\.dat", ".bed", dat.file))
+ }
+ data.source<-list()
+ data.source[["bed.dir"]]<-bed.dir
+ data.source[["sample.sheet"]]<-opts[["pheno"]]
+
+
+}else if(opts[["data-type"]]=="GS.report"){
+
+ data.type<-"GS.report"
+ data.source<-opts[["gs-report"]]
+
+}else if(opts[["data-type"]]=="GEO"){
+
+ data.type<-"GEO"
+ data.source<-opts[["geo-series"]]
+
+}else if(opts[["data-type"]]=="data.files"){
+
+ data.type<-"GEO"
+ data.source<-opts[["geo-series"]]
+
+}else if(opts[["data-type"]]=="data.files"){
+
+ data.type<-"data.files"
+ data.source<-c(opts[["pheno"]], opts[["betas"]])
+ if(!is.null(opts[["pvals"]]))
+ data.source<-c(data.source, opts[["pvals"]])
+
+}else if(opts[["data-type"]]=="bed.dir"){
+
+ data.type<-"bed.dir"
+ file.string<-gsub(" ","", opts[["bed-files"]])
+ files<-strsplit(file.string, ",")[[1]]
+ files<-files[files!=""]
+ bed.dir<-sprintf("%s_beds",opts[["report-dir"]])
+ dir.create(bed.dir)
+ file.copy(files, bed.dir)
+ for(dat.file in list.files(bed.dir, full.names = TRUE)){
+ file.rename(dat.file, gsub("\\.dat", ".bed", dat.file))
+ }
+ data.source<-list()
+ data.source[["bed.dir"]]<-bed.dir
+
+ logger.start(fname="NA")
+ sample.sheet<-read.sample.annotation(opts[["pheno"]])
+ logger.close()
+ if(length(files) < nrow(sample.sheet))
+ stop("Not all bed files are present")
+
+ cn<-colnames(sample.sheet)
+ dat.files<-sapply(strsplit(files, "\\/"), function(el) el[length(el)])
+ sample.sheet<-cbind(sample.sheet, gsub("\\.dat", ".bed", dat.files))
+ colnames(sample.sheet)<-c(cn, "BED_files")
+ data.source[["sample.sheet"]]<-sample.sheet
+}
+
+if("logging" %in% names(opts)){ # TODO create a cleaner way of checking whether the full options set was supplied
+
+ dump<-sapply(names(opt.class), function(on){
+ getoptname<-gsub("-", "\\.","-",on)
+ if(getoptname %in% names(opts)){
+ if(opt.class[on]=="logical"){
+ ov<-TRUE
+ }else if(opt.class %in% c("character","character.vector")){
+ ov<-opts[[getoptname]]
+ ov<-gsub("\"", "", ov)
+ if(opt.class=="character.vector"){
+ ov<-as.character(strsplit(ov,","))
+ }
+
+ }else if(opt.class %in% c("integer","numeric","integer.vector","numeric.vector")){
+ ov<-opts[[getoptname]]
+ ov<-gsub("\"", "", ov)
+ if(opt.class %in% c("integer.vector","numeric.vector")){
+ ov<-as.character(strsplit(ov,","))
+ }
+ }
+ eval(parse(text=sprintf("rnb.options(%s=ov)",on)))
+ }
+ })
+
+ logical.opts<-names(opt.class[opt.class=="logical"])
+ logical.opts.false<-logical.opts[!logical.opts %in% gsub("-",".",names(opts))]
+
+
+ dump<-sapply(logical.opts.false, function(on){
+ eval(parse(text=sprintf("rnb.options(%s=FALSE)",on)))
+ })
+}
+
+print(rnb.options())
+
+#report.out.dir<-sprintf("%s_rnbReport", tempdir())
+report.out.dir<-opts[["report-dir"]]
+print("Starting RnBeads with the following inputs:")
+print(data.source)
+print(report.out.dir)
+print(data.type)
+rnb.run.analysis(data.source=data.source, dir.report=report.out.dir, data.type=data.type)
+
+
+#sink(file=NULL)
+#flush(msg.file)
+#close(msg.file)
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e install.rnbeads.R
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/install.rnbeads.R Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,1 @@
+source("http://rnbeads.mpi-inf.mpg.de/install.R")
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e rnbeads.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/rnbeads.xml Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,675 @@
+
+
+ Performs RnBeads analysis for the selected set of
+
+ R_SCRIPTS_PATH
+ R
+
+ rnbeads_galaxy_wrapper.sh
+ --report-dir="$html_file.extra_files_path"
+ --output-file="$html_file"
+ #if str( $inputDataSelector.dataType ) == "idats"
+ --pheno="$inputDataSelector.sampleAnnotations"
+ #end if
+ #if str( $inputDataSelector.dataType ) != "idats"
+ #pass
+ #else if str( $inputDataSelector.idatSelector.idatSource ) == "history"
+ --data-type="idatFiles"
+ #set $idatList=""
+ #for $input_file in $inputDataSelector.idatSelector.idatSeries:
+ #set $idatList+=str( $input_file.idatFile )
+ #set $idatList+=","
+ #end for
+ --idat-files="$idatList"
+ #else:
+ --data-type="idatDir"
+ --idat-dir="$inputDataSelector.idatSelector.idatRepo.fields.path"
+ #end if
+ #if str( $inputDataSelector.dataType ) == "gsreport"
+ --data-type="GS.report"
+ --gs-report="$inputDataSelector.gsReportFile"
+ #end if
+ #if str( $inputDataSelector.dataType ) == "geo"
+ --data-type="GEO"
+ --geo-series=$inputDataSelector.geoSeries
+ #end if
+ #if str( $inputDataSelector.dataType ) == "tables"
+ --data-type="data.files"
+ --pheno="$inputDataSelector.sampleAnnotations"
+ #end if
+ #if str( $inputDataSelector.dataType ) == "tables"
+ --data-type="data.files"
+ --pheno="$inputDataSelector.sampleAnnotations"
+ --betas="$inputDataSelector.betaTable"
+ --pvals="$inputDataSelector.pvalTable"
+ #end if
+ #if str( $inputDataSelector.dataType ) == "bed"
+ --data-type="bed.dir"
+ --pheno="$inputDataSelector.sampleAnnotations"
+ #set $bedList=""
+ #for $input_file in $inputDataSelector.bedSeries:
+ #set $bedList+=str( $input_file.bedFile )
+ #set $bedList+=","
+ #end for
+ --bed-files="$bedList"
+ #end if
+ #if str( $options.optionSet ) == "full"
+ #if str( $options.analysisName ) != ""
+ --analysis-name="$options.analysisName"
+ #end if
+ #if str( $options.logging ) == "True"
+ --logging
+ #end if
+ #if str( $options.email ) != ""
+ --email="$options.email"
+ #end if
+ #if str( $options.assembly ) != ""
+ --assembly="$options.assembly"
+ #end if
+ #if str( $options.columnsPairing ) != ""
+ --columns-pairing="$options.columnsPairing"
+ #end if
+ #if str( $options.analyzeSites ) == "True"
+ --analyze-sites
+ #end if
+ #if str( $options.regionTypes ) != ""
+ --region-types="$options.regionTypes"
+ #end if
+ #if str( $options.regionAggregation ) != ""
+ --region-aggregation="$options.regionAggregation"
+ #end if
+ #if str( $options.regionSubsegments ) != ""
+ --region-subsegments="$options.regionSubsegments"
+ #end if
+ #if str( $options.regionSubsegmentsTypes ) != ""
+ --region-subsegments-types="$options.regionSubsegmentsTypes"
+ #end if
+ #if str( $options.identifiersColumn ) != ""
+ --identifiers-column="$options.identifiersColumn"
+ #end if
+ #if str( $options.pointsCategory ) != ""
+ --points-category="$options.pointsCategory"
+ #end if
+ #if str( $options.colorsCategory ) != ""
+ --colors-category="$options.colorsCategory"
+ #end if
+ #if str( $options.colorsGradient ) != ""
+ --colors-gradient="$options.colorsGradient"
+ #end if
+ #if str( $options.minGroupSize ) != ""
+ --min-group-size="$options.minGroupSize"
+ #end if
+ #if str( $options.maxGroupCount ) != ""
+ --max-group-count="$options.maxGroupCount"
+ #end if
+ #if str( $options.gzLargeFiles ) == "True"
+ --gz-large-files
+ #end if
+ #if str( $options.strandSpecific ) == "True"
+ --strand-specific
+ #end if
+ #if str( $options.replicateIdColumn ) != ""
+ --replicate-id-column="$options.replicateIdColumn"
+ #end if
+ #if str( $options.import ) == "True"
+ --import
+ #end if
+ #if str( $options.importDefaultDataType ) != ""
+ --import-default-data-type="$options.importDefaultDataType"
+ #end if
+ #if str( $options.importTableSeparator ) != ""
+ --import-table-separator="$options.importTableSeparator"
+ #end if
+ #if str( $options.importBedStyle ) != ""
+ --import-bed-style="$options.importBedStyle"
+ #end if
+ #if str( $options.importBedColumns ) != ""
+ --import-bed-columns="$options.importBedColumns"
+ #end if
+ #if str( $options.importBedFrameShift ) != ""
+ --import-bed-frame-shift="$options.importBedFrameShift"
+ #end if
+ #if str( $options.importBedTest ) == "True"
+ --import-bed-test
+ #end if
+ #if str( $options.importBedTestOnly ) == "True"
+ --import-bed-test-only
+ #end if
+ #if str( $options.importIdatChunkSize ) != ""
+ --import-idat-chunk-size="$options.importIdatChunkSize"
+ #end if
+ #if str( $options.preprocessing ) == "True"
+ --preprocessing
+ #end if
+ #if str( $options.qc ) == "True"
+ --qc
+ #end if
+ #if str( $options.qcBoxplots ) == "True"
+ --qc-boxplots
+ #end if
+ #if str( $options.qcBarplots ) == "True"
+ --qc-barplots
+ #end if
+ #if str( $options.qcNegativeBoxplot ) == "True"
+ --qc-negative-boxplot
+ #end if
+ #if str( $options.qcSnpHeatmap ) == "True"
+ --qc-snp-heatmap
+ #end if
+ #if str( $options.qcSnpDistances ) == "True"
+ --qc-snp-distances
+ #end if
+ #if str( $options.qcSnpBoxplot ) == "True"
+ --qc-snp-boxplot
+ #end if
+ #if str( $options.qcSnpBarplot ) == "True"
+ --qc-snp-barplot
+ #end if
+ #if str( $options.qcCoveragePlots ) == "True"
+ --qc-coverage-plots
+ #end if
+ #if str( $options.qcCoverageThresholdPlot ) != ""
+ --qc-coverage-threshold-plot="$options.qcCoverageThresholdPlot"
+ #end if
+ #if str( $options.qcCoverageHistograms ) == "True"
+ --qc-coverage-histograms
+ #end if
+ #if str( $options.qcCoverageViolins ) == "True"
+ --qc-coverage-violins
+ #end if
+ #if str( $options.qcSampleBatchSize ) != ""
+ --qc-sample-batch-size="$options.qcSampleBatchSize"
+ #end if
+ #if str( $options.normalization ) == "True"
+ --normalization
+ #end if
+ #if str( $options.normalizationMethod ) != ""
+ --normalization-method="$options.normalizationMethod"
+ #end if
+ #if str( $options.normalizationBackgroundMethod ) != ""
+ --normalization-background-method="$options.normalizationBackgroundMethod"
+ #end if
+ #if str( $options.normalizationPlotShifts ) == "True"
+ --normalization-plot-shifts
+ #end if
+ #if str( $options.filteringWhitelist ) != ""
+ --filtering-whitelist="$options.filteringWhitelist"
+ #end if
+ #if str( $options.filteringBlacklist ) != ""
+ --filtering-blacklist="$options.filteringBlacklist"
+ #end if
+ #if str( $options.filteringContextRemoval ) != ""
+ --filtering-context-removal="$options.filteringContextRemoval"
+ #end if
+ #if str( $options.filteringSnp ) != ""
+ --filtering-snp="$options.filteringSnp"
+ #end if
+ #if str( $options.filteringSexChromosomesRemoval ) == "True"
+ --filtering-sex-chromosomes-removal
+ #end if
+ #if str( $options.filteringMissingValueQuantile ) != ""
+ --filtering-missing-value-quantile="$options.filteringMissingValueQuantile"
+ #end if
+ #if str( $options.filteringCoverageThreshold ) != ""
+ --filtering-coverage-threshold="$options.filteringCoverageThreshold"
+ #end if
+ #if str( $options.filteringLowCoverageMasking ) == "True"
+ --filtering-low-coverage-masking
+ #end if
+ #if str( $options.filteringHighCoverageOutliers ) == "True"
+ --filtering-high-coverage-outliers
+ #end if
+ #if str( $options.filteringGreedycut ) == "True"
+ --filtering-greedycut
+ #end if
+ #if str( $options.filteringGreedycutPvalueThreshold ) != ""
+ --filtering-greedycut-pvalue-threshold="$options.filteringGreedycutPvalueThreshold"
+ #end if
+ #if str( $options.filteringGreedycutRcTies ) != ""
+ --filtering-greedycut-rc-ties="$options.filteringGreedycutRcTies"
+ #end if
+ #if str( $options.filteringDeviationThreshold ) != ""
+ --filtering-deviation-threshold="$options.filteringDeviationThreshold"
+ #end if
+ #if str( $options.inference ) == "True"
+ --inference
+ #end if
+ #if str( $options.inferenceTargetsSva ) != ""
+ --inference-targets-sva="$options.inferenceTargetsSva"
+ #end if
+ #if str( $options.inferenceReferenceMethylomeColumn ) != ""
+ --inference-reference-methylome-column="$options.inferenceReferenceMethylomeColumn"
+ #end if
+ #if str( $options.inferenceMaxCellTypeMarkers ) != ""
+ --inference-max-cell-type-markers="$options.inferenceMaxCellTypeMarkers"
+ #end if
+ #if str( $options.inferenceTopCellTypeMarkers ) != ""
+ --inference-top-cell-type-markers="$options.inferenceTopCellTypeMarkers"
+ #end if
+ #if str( $options.inferenceSvaNumMethod ) != ""
+ --inference-sva-num-method="$options.inferenceSvaNumMethod"
+ #end if
+ #if str( $options.exploratory ) == "True"
+ --exploratory
+ #end if
+ #if str( $options.exploratoryColumns ) != ""
+ --exploratory-columns="$options.exploratoryColumns"
+ #end if
+ #if str( $options.exploratoryTopDimensions ) != ""
+ --exploratory-top-dimensions="$options.exploratoryTopDimensions"
+ #end if
+ #if str( $options.exploratoryPrincipalComponents ) != ""
+ --exploratory-principal-components="$options.exploratoryPrincipalComponents"
+ #end if
+ #if str( $options.exploratoryCorrelationPvalueThreshold ) != ""
+ --exploratory-correlation-pvalue-threshold="$options.exploratoryCorrelationPvalueThreshold"
+ #end if
+ #if str( $options.exploratoryCorrelationPermutations ) != ""
+ --exploratory-correlation-permutations="$options.exploratoryCorrelationPermutations"
+ #end if
+ #if str( $options.exploratoryCorrelationQc ) == "True"
+ --exploratory-correlation-qc
+ #end if
+ #if str( $options.exploratoryBetaDistribution ) == "True"
+ --exploratory-beta-distribution
+ #end if
+ #if str( $options.exploratoryIntersample ) == "True"
+ --exploratory-intersample
+ #end if
+ #if str( $options.exploratoryDeviationPlots ) == "True"
+ --exploratory-deviation-plots
+ #end if
+ #if str( $options.exploratoryClustering ) != ""
+ --exploratory-clustering="$options.exploratoryClustering"
+ #end if
+ #if str( $options.exploratoryClusteringTopSites ) != ""
+ --exploratory-clustering-top-sites="$options.exploratoryClusteringTopSites"
+ #end if
+ #if str( $options.exploratoryRegionProfiles ) != ""
+ --exploratory-region-profiles="$options.exploratoryRegionProfiles"
+ #end if
+ #if str( $options.differential ) == "True"
+ --differential
+ #end if
+ #if str( $options.differentialSiteTestMethod ) != ""
+ --differential-site-test-method="$options.differentialSiteTestMethod"
+ #end if
+ #if str( $options.differentialPermutations ) != ""
+ --differential-permutations="$options.differentialPermutations"
+ #end if
+ #if str( $options.differentialComparisonColumns ) != ""
+ --differential-comparison-columns="$options.differentialComparisonColumns"
+ #end if
+ #if str( $options.differentialComparisonColumnsAllPairwise ) != ""
+ --differential-comparison-columns-all-pairwise="$options.differentialComparisonColumnsAllPairwise"
+ #end if
+ #if str( $options.covariateAdjustmentColumns ) != ""
+ --covariate-adjustment-columns="$options.covariateAdjustmentColumns"
+ #end if
+ #if str( $options.differentialAdjustmentSva ) == "True"
+ --differential-adjustment-sva
+ #end if
+ #if str( $options.differentialAdjustmentCelltype ) == "True"
+ --differential-adjustment-celltype
+ #end if
+ #if str( $options.differentialEnrichment ) == "True"
+ --differential-enrichment
+ #end if
+ #if str( $options.exportToBed ) == "True"
+ --export-to-bed
+ #end if
+ #if str( $options.exportToTrackhub ) != ""
+ --export-to-trackhub="$options.exportToTrackhub"
+ #end if
+ #if str( $options.exportToCsv ) == "True"
+ --export-to-csv
+ #end if
+ #if str( $options.exportToEwasher ) == "True"
+ --export-to-ewasher
+ #end if
+ #if str( $options.exportTypes ) != ""
+ --export-types="$options.exportTypes"
+ #end if
+ #if str( $options.colorsMeth ) != ""
+ --colors-meth="$options.colorsMeth"
+ #end if
+ #if str( $options.colors3Gradient ) != ""
+ --colors-3-gradient="$options.colors3Gradient"
+ #end if
+ #if str( $options.loggingMemory ) == "True"
+ --logging-memory
+ #end if
+ #if str( $options.loggingDisk ) == "True"
+ --logging-disk
+ #end if
+ #if str( $options.loggingExitOnError ) == "True"
+ --logging-exit-on-error
+ #end if
+ #if str( $options.distributionSubsample ) != ""
+ --distribution-subsample="$options.distributionSubsample"
+ #end if
+ #if str( $options.diskDumpBigMatrices ) == "True"
+ --disk-dump-big-matrices
+ #end if
+ #if str( $options.enforceMemoryManagement ) == "True"
+ --enforce-memory-management
+ #end if
+ #if str( $options.enforceDestroyDiskDumps ) == "True"
+ --enforce-destroy-disk-dumps
+ #end if
+ #end if
+
+
+
+
+ Tabular data
+ IDAT files
+ GenomeStudio report
+ Gene Expression Omnibus series
+ BED files
+
+
+
+
+
+
+
+
+
+
+ Select from history
+ Repository on the server
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Default options
+ Full option set
+
+
+
+
+
+ True
+ False
+
+
+
+
+
+ True
+ False
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+
+
+ True
+ False
+
+
+
+
+
+
+ True
+ False
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+
+
+ True
+ False
+
+
+
+
+
+
+
+ True
+ False
+
+
+
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+
+
+ True
+ False
+
+
+
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+ True
+ False
+
+
+
+
+
+
+
+
+
+
+
+
+ RnBeads is an R-package for comprehensive analysis of Illumina Infinium HumanMethylation450 BeadChip data. It extends previous approaches for this type of data analysis by high throughput capabilities, as well as presenting results in a comprehensive, highly interpretable fashion.
+
+
+
+
+
+
+
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e rnbeads_galaxy_wrapper.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/rnbeads_galaxy_wrapper.sh Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,27 @@
+#!/bin/bash
+random_hash=`date | md5sum | head -c10`
+Rscript --no-save $(dirname $(readlink -f $0))/RnBeadsGalaxy.R $* > /tmp/rnbeads_${random_hash}.stdout 2>/tmp/rnbeads_${random_hash}.stderr
+#Rscript --no-save \$R_SCRIPTS_PATH/RnBeadsGalaxy.R $*
+outfile=`echo $* | cut -d\ -f2 | sed -e "s/--output-file=//g"`
+echo $outfile
+#outdir=`echo $* | sed -e "s/.*--report-dir=\(.*\)[[:blank:]].*/\1/g"`
+
+
+errl=`cat /tmp/rnbeads_${random_hash}.stderr | grep -e "[E|e]rror" | wc -l`
+started=`cat /tmp/rnbeads_${random_hash}.stdout | grep -e "STARTED RnBeads Pipeline" | wc -l`
+if [ "$started" -lt 1 ]
+then
+ cat /tmp/rnbeads_${random_hash}.stdout >&2
+ cat /tmp/rnbeads_${random_hash}.stderr >&2
+ exit 3
+else
+ echo "
" >> $outfile
+ echo "RnBeads report " >> $outfile
+ echo "Output was generated during the execution: " >> $outfile
+ echo "" >> outfile
+ cat /tmp/rnbeads_${random_hash}.stdout |sed -e "s/$/ /g" >> $outfile
+ echo " " >> outfile
+ echo "" >> $outfile
+ echo "" >> $outfile
+ exit 0
+fi
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e rnbeads_repos.txt.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/rnbeads_repos.txt.sample Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,1 @@
+repo1 Repository1 /data/iscan/idats
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e tool_data_table_conf.xml.sample
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,6 @@
+
+
+
\ No newline at end of file
diff -r 51c4548d56ed -r 6b0981ab063e tool_dependencies.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml Thu Aug 14 14:56:18 2014 -0400
@@ -0,0 +1,23 @@
+
+
+
+ $REPOSITORY_INSTALL_DIR
+
+
+
+
+ http://CRAN.R-project.org/src/base/R-3/R-3.1.0.tar.gz
+ ./configure --prefix=$INSTALL_DIR --with-x=no
+ make
+ make install
+
+ $INSTALL_DIR/bin
+
+ $INSTALL_DIR/bin/R --no-save <<< "install.packages('getopt', repos='http://cran.r-project.org'); source('http://rnbeads.mpi-inf.mpg.de/install.R')"
+
+
+
+ You need a FORTRAN compiler or perhaps f2c in addition to a C compiler to build R.
+
+
+
\ No newline at end of file